home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _INetMail.au3 < prev    next >
Encoding:
Text File  |  2006-06-17  |  387 b   |  6 lines

  1. #include <INet.au3>
  2.  
  3. $Address = InputBox('Address', 'Enter the E-Mail address to send message to')
  4. $Subject = InputBox('Subject', 'Enter a subject for the E-Mail')
  5. $Body = InputBox('Body', 'Enter the body (message) of the E-Mail')
  6. MsgBox(0,'E-Mail has been opened','The E-Mail has been opened and process identifier for the E-Mail client is ' & _INetMail($address, $subject, $body))